06. findViewByld() Calls

How Many findViewByld() calls

Let’s say that each item in your RecyclerView list contains four individual data views, and you don't cache these views in a ViewHolder. If eight items fit on screen, approximately how many extra findViewById() calls will be made if you scroll through 30 items?

In addition to the eight items that fit on screen, assume that two extra items are needed for smooth scrolling.

SOLUTION: 80 calls